Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@changesets/types
Advanced tools
@changesets/types is a TypeScript type definitions package for the Changesets tool, which is used to manage versioning and changelogs for monorepos. It provides type definitions for various components and configurations used in the Changesets workflow.
Changeset type
Defines the structure of a changeset, including an ID, summary, and a list of releases with their respective types.
import { Changeset } from '@changesets/types';
const exampleChangeset: Changeset = {
id: 'example-id',
summary: 'This is an example changeset',
releases: [
{ name: 'package-a', type: 'minor' },
{ name: 'package-b', type: 'patch' }
]
};
Release type
Defines the structure of a release, including the package name and the type of release (major, minor, or patch).
import { Release } from '@changesets/types';
const exampleRelease: Release = {
name: 'package-a',
type: 'minor'
};
Config type
Defines the structure of the Changesets configuration, including options for changelog generation, commit behavior, access level, and the base branch.
import { Config } from '@changesets/types';
const exampleConfig: Config = {
changelog: ['@changesets/changelog-github', { repo: 'org/repo' }],
commit: false,
access: 'public',
baseBranch: 'main'
};
The 'semver' package provides utilities for parsing, validating, and incrementing semantic version numbers. While it focuses on versioning, it does not provide the same level of integration with changelogs and monorepos as @changesets/types.
The 'standard-version' package automates versioning and changelog generation based on conventional commits. It offers similar functionality to Changesets but is more opinionated and less flexible in terms of configuration.
Lerna is a tool for managing JavaScript projects with multiple packages. It includes versioning and changelog generation features, but it is a more comprehensive tool that also handles package management and publishing, whereas @changesets/types focuses on type definitions for the Changesets tool.
A package of types for use in changesets, or projects wishing to extend them.
Of these, the most useful types are:
The format for a changeset as of changesets version 2.
The shape of the object used for generating changelog entries.
The combined object used to version packages and update changelogs.
FAQs
Common types shared between changeset packages
We found that @changesets/types demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.